home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / stk-3.002 / stk-3 / STk-3.1 / Src / stk.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-27  |  1.1 KB  |  33 lines

  1. /******************************************************************************
  2.  *
  3.  * s t k . c
  4.  *
  5.  * Copyright ⌐ 1993-1996 Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr>
  6.  * 
  7.  *
  8.  * Permission to use, copy, and/or distribute this software and its
  9.  * documentation for any purpose and without fee is hereby granted, provided
  10.  * that both the above copyright notice and this permission notice appear in
  11.  * all copies and derived works.  Fees for distribution or use of this
  12.  * software or derived works may only be charged with express written
  13.  * permission of the copyright holder.  
  14.  * This software is provided ``as is'' without express or implied warranty.
  15.  *
  16.  * This software is a derivative work of other copyrighted softwares; the
  17.  * copyright notices of these softwares are placed in the file COPYRIGHTS
  18.  *
  19.  *
  20.  *           Author: Erick Gallesio [eg@unice.fr]
  21.  *    Creation date: 12-May-1993 10:34
  22.  * Last file update: 27-May-1996 10:04
  23.  *
  24.  ******************************************************************************/
  25. #define STK_MAIN
  26. #include "stk.h"
  27.  
  28. int main(int argc,char **argv)
  29. {
  30.   STk_toplevel(argc, argv);
  31.   return 0;
  32. }
  33.